/* Estilos para a Landing Page DellasVit
   Desenvolvido para apresentar o produto DellasVit - Suplemento natural para mulheres na menopausa
   Cores principais: Rosa (#ff3399), Preto (#222222), Branco (#ffffff)
   Design responsivo, feminino, moderno e limpo
*/

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #222222;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff3399;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Botões e CTAs */
.cta-button, .package-button {
    display: inline-block;
    background-color: #ff3399;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 153, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover, .package-button:hover {
    background-color: #e6007e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 51, 153, 0.4);
}

/* Header e Hero Section */
.hero {
    background: linear-gradient(135deg, #ff3399 0%, #ff66b3 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.logo-img {
    max-width: 150px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 30px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffff00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #ffff00;
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1.5;
    max-width: 600px;
    text-align: center;
}

.product-img {
    max-width: 100%;
    max-height: 550px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.product-img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Seção de Benefícios */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff3399;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #ff3399;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222222;
}

.benefit-card p {
    color: #666;
}

/* Seção de Fórmula */
.formula {
    background-color: #f9f9f9;
    position: relative;
}

.formula:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-pattern.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.formula-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.formula-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.formula-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.formula-ingredients {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.ingredient {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ff3399;
}

.ingredient h3 {
    color: #ff3399;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.ingredient p {
    color: #666;
}

/* Seção Antes e Depois */
.before-after {
    background-color: white;
}

.before-after-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.before-box, .after-box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.before-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.after-box {
    background-color: #ff3399;
    color: white;
}

.before-box h3, .after-box h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.before-list li, .after-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.before-list i {
    color: #ff3399;
    margin-right: 10px;
    font-size: 1.2rem;
}

.after-list i {
    color: #ffff00;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção Modo de Uso */
.how-to-use {
    background-color: #f9f9f9;
}

.usage-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.usage-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.usage-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.usage-steps {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ff3399;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222222;
}

.usage-note {
    background-color: #fff3f9;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff3399;
    margin-top: 20px;
}

.usage-note p {
    color: #ff3399;
    font-weight: 500;
}

/* Seção de Depoimentos */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: #ff3399;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    font-weight: 700;
    color: #ff3399;
}

/* Seção de Garantias */
.guarantees {
    background-color: #f9f9f9;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guarantee-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background-color: #ff3399;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222222;
}

.guarantee-card p {
    color: #666;
}

/* Seção de Compra */
.purchase {
    background-color: white;
    position: relative;
}

.purchase:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-pattern.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.package-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border-color: #ff3399;
    box-shadow: 0 10px 30px rgba(255, 51, 153, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff3399;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-header {
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #222222;
}

.package-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.package-image {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-img {
    max-height: 100%;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-price {
    margin-bottom: 20px;
}

.price-original {
    color: #999;
    font-size: 0.9rem;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #ff3399;
    margin-bottom: 5px;
}

.price-installment {
    font-size: 0.9rem;
    color: #666;
}

.package-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #ff3399;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 153, 0.3);
}

.package-button:hover {
    background-color: #e6007e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 51, 153, 0.4);
}

/* Seção FAQ */
.faq {
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fff3f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #222222;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff3399;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
}

/* Rodapé */
.footer {
    background-color: #222222;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.footer-info, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-info p, .footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: #ff3399;
}

.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card.animate, 
.testimonial-card.animate, 
.package-card.animate, 
.guarantee-card.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content, .hero-image {
        flex: 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .benefits-list {
        display: inline-block;
        text-align: left;
    }
    
    .formula-image, .formula-ingredients,
    .usage-image, .usage-steps {
        flex: 100%;
        max-width: 100%;
    }
    
    .formula-image, .usage-image {
        margin-bottom: 30px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .cta-button, .package-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .benefit-card, .testimonial-card, 
    .package-card, .guarantee-card {
        padding: 20px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-contact i {
        display: block;
        margin: 0 auto 5px;
    }
}
